@font-face {
    font-family: 'zelda';
    src: url(/fonts/zelda.otf);
}

@font-face {
    font-family: 'ubuntu';
    src: url(/fonts/Ubuntu-C.ttf);
}

body {
    /*font-family: Verdana, Geneva, Tahoma, sans-serif;*/
    font-family: 'ubuntu';
    font-weight: 100;
    color: midnightblue;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(cornflowerblue, lightblue, lightyellow, #cfab72, palevioletred) fixed center;
    overflow: hidden;
}

h1 {
    margin: 0 0 1px;
    font-family: 'zelda';
    font-weight: 100;
    font-size: clamp(25px, 10vw, 100px);
}

hr {
    width: 80vw;
    margin: 10px 0;
}

a {
    text-decoration: none;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    max-width: 80vw;
    min-height: 60vh;
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
}

.custom-button {
    display: flex;
    flex-direction: column;
    width: clamp(70px, 10vw, 200px);
    height: clamp(70px, 10vw, 200px);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s, transform 0.2s;
    background-color: rgba(106, 71, 62, 0.11);
    overflow: hidden;
}

.custom-button:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.image-container, .text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.image-container {
    height: clamp(60%, 65%, 70%);
}

.text-container {
    height: clamp(30%, 35%, 40%);
}

.button-img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
}

.btn-text {
    font-size: clamp(8px, 1.5vw, 20px);
    font-weight: bold;
    color: midnightblue;
    width: 100%;
    text-align: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: rgba(69, 69, 69, 0.5);
    border-radius: 10px;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content .option:hover,
.dropdown-content .top-option:hover,
.dropdown-content .bottom-option:hover {
    background-color: #ddd;
}

.dropdown-content .top-option:hover {
    border-radius: 10px 10px 0 0;
}

.dropdown-content .bottom-option:hover {
    border-radius: 0 0 10px 10px;
}