body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000000;
    width: 100%;
    margin: 0;
    min-height: 800px;
}

.overlay-image {
    pointer-events: none;
    position: absolute;
    margin: 0 auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    animation: pulse-stretch 2.5s ease-in-out infinite alternate;
}

#main {
    position: relative;
    width: 70%;
    min-height: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(199, 179, 172, 1) 42%, rgba(121, 103, 100, 1) 100%);
    overflow: hidden;
}

.buffer {
    display: flex;
    height: 100dvh;
    width: 100%;
    align-items: center;
}

.info {
    z-index: 11;
    position: absolute;
    margin-left: 10dvw;
    text-align: center;

}

.box {
    margin: 0 auto;
    margin-bottom: 20px;
    width: fit-content;
    padding: 10px 15px 20px 15px;
    color: rgb(245, 170, 127);
    background-color: rgb(17, 17, 16);
    border-radius: 50%;
    box-shadow: 0 0 5px 5px rgb(17, 17, 16);

}

.link-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 380px;

}

.link-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    padding: 10px;
    border-radius: 10px;
    color: #161515;
}

.link-button {
    font-size: small;
    margin: 3px;
    padding: 5px;
    border: 2px solid rgb(136, 127, 122);
    border-radius: 10px;
    width: 130px;
    background-color: rgb(17, 17, 16);
    text-decoration: none;
    font-weight: bold;
    color: rgb(136, 127, 122);
    transition: color 0.2s ease-out, border 0.2s ease-out, box-shadow 0.2s ease-out, scale 0.15s ease-out, font-size 0.1s ease-out;
}

.link-button:hover {
    border: 2px solid rgb(249, 67, 255);
    box-shadow: 0 0 5px 5px rgba(249, 67, 255, 0.226);
    color: rgb(249, 67, 255);
    scale: 1.1;
    transition: color 0.2s ease-in, border 0.2s ease-in, box-shadow 0.2s ease-in, scale 0.1s ease-in, font-size 0.1s ease-in;
}

/* Container for the menu */
.dropdown {
    font-size: small;
    position: relative;
    display: inline-block;
}

/* Styled trigger button */
.dropbtn {
    cursor: pointer;
    margin: 3px;
    padding: 5px;
    border: 2px solid rgb(136, 127, 122);
    border-radius: 10px;
    width: 130px;
    background-color: rgb(17, 17, 16);
    text-decoration: none;
    font-weight: bold;
    color: rgb(136, 127, 122);
    transition: color 0.2s ease-out, border 0.2s ease-out, box-shadow 0.2s ease-out, scale 0.15s ease-out, font-size 0.1s ease-out;
}

/* Hidden dropdown content container */
.dropdown-content {
    display: none;
    position: absolute;
    justify-content: center;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    background-color: rgba(17, 17, 16, 0);
    text-decoration: none;
    font-weight: bold;
    color: rgb(136, 127, 122);
    transition: color 0.2s ease-out, border 0.2s ease-out, box-shadow 0.2s ease-out, scale 0.1s ease-out, font-size 0.1s ease-out;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    margin: 3px;
    padding: 5px;
    border: 2px solid rgb(136, 127, 122);
    border-radius: 10px;
    width: 130px;
    background-color: rgb(17, 17, 16);
    text-decoration: none;
    font-weight: bold;
    color: rgb(136, 127, 122);
    transition: color 0.2s ease-out, border 0.2s ease-out, box-shadow 0.2s ease-out, scale 0.15s ease-out, font-size 0.1s ease-out;
    display: block;
}

/* Change link color on hover */
.dropdown-content a:hover {
    
    border: 2px solid rgb(249, 67, 255);
    box-shadow: 0 0 5px 5px rgba(249, 67, 255, 0.226);
    color: rgb(249, 67, 255);
    scale: 1.1;
    transition: color 0.2s ease-in, border 0.2s ease-in, box-shadow 0.2s ease-in, scale 0.1s ease-in, font-size 0.1s ease-in;
}

/* Show the menu when hovering over the container */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change button background when dropdown is active */
.dropdown:hover .dropbtn {
    border: 2px solid rgb(198, 100, 255);
    box-shadow: 0 0 5px 5px rgba(198, 100, 255, 0.144);
    color: rgb(198, 100, 255);
    scale: 1.1;
    transition: color 0.2s ease-in, border 0.2s ease-in, box-shadow 0.2s ease-in, scale 0.15s ease-in, font-size 0.1s ease-in;
}

.domi {
    width: fit-content;
    height: 100dvh;
    min-height: 800px;
    animation: pulse-stretch 4s ease-in-out infinite alternate;
}

@keyframes moveUpDown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@keyframes pulse-stretch {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1, 1.03);

    }

    /* Stretches wide/short */
    100% {
        transform: scale(1, 1);
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1.1, 1.1);
    }
}

@keyframes pulse-stretch {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1, 1.01);

    }

    /* Stretches wide/short */
    100% {
        transform: scale(1, 1);
    }
}

@media (max-width: 800px) {
        .domi {
        margin-left: 50%;
    }

    .info {
    left: 35%;
    transform: translateX(-50%);
    }

        .link-box {
        display: flex;
        flex-direction: column;
    }

    .dropbtn {
        color:rgb(247, 229, 198);
    }

    .dropdown-content a{
        color:rgb(247, 229, 198);
    }

    .link-button{
        color:rgb(247, 229, 198);
    }
}