@font-face {
    font-family: 'TT2020Base';
    src: url('/fonts/TT2020Base-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TT2020Base', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    font-style: italic;
    font-size: 2rem;
    background-color: rgb(82, 0, 0);
    color: white;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

img {
    border: 1px solid white;
    border-radius: 1rem;
    width: 300px;
    transition: 2s;
    filter: drop-shadow(0 0 5rem gold);
}

img:hover {
    filter: drop-shadow(0 0 5rem rgb(255, 0, 0));
}

::selection {
    background-color: orange;
}


.header-line {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dropbtn {
    font-size: inherit;
    font-family: inherit;
    background-color: inherit;
    color: inherit;
    border: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.dropbtn:hover,
.dropbtn:focus {
    color: black;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    overflow: auto;
    z-index: 1;
}

.dropdown-content a {
    padding: 0.5rem 0.5rem 0.25rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    color: black;

    border-radius: 1rem;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown a:hover {
    background-color: rgb(82, 0, 0);
    color: white;
}

.show {
    display: block;
}