﻿div#registry {
    position: relative;
}

div#registry div#registryBox {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
}

div#registry div.optionBox {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

div#registry div.optionBox > div.button {
    width: 260px;
    height: 120px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    background-color: #4062A2;
}

div#registry div.optionBox > div.button:hover {
    position: relative;
    top: -1px;
    left: 1px;
    background-color: #4082CC;
}

div#registry p#backLink {
    position: relative;
    top: -42px;
    margin-top: 42px;
    cursor: pointer;
    color: #4062A2;
}

div#registry p#backLink:hover {
    text-decoration: underline;
    color: #4082CC;
}

div#registry div#registryBox div#deliveryAddress {
    display: none;
}