.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}

body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    background-image: url("https://wallpapercosmos.com/w/full/e/2/d/32268-3840x2160-desktop-4k-dune-2021-background-photo.jpg");
    /* background-image: url("https://i.pinimg.com/originals/f9/bb/56/f9bb56d16bc7a40ccb9508ffbf38290d.jpg"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

* {
    font-family: "Roboto", sans-serif;
}

#main-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */

}

.titlebar {
    margin-bottom: 90px;
}

.titlebar h1 {
    font-family: 'Dune Rise', sans-serif;
    color: #ffffff;
    font-weight: 900;
}

.buttonss {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
}

.button{
    width: 200px;
    height: 200px;
    font-size: 16px;
    cursor: pointer;
    margin: 20px;
    font-size: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border-radius: 100%;
    font-size: 16px;
    font-family: 'Dune Rise', sans-serif;
    font-weight: 900;
    transition: all 0.3s;
}

a {
    text-decoration: none;
}

.button:hover {
    transform: scale(1.03);
}


#qwark {
    background-color: #F57B2F
}
#qwark:hover {
    background-color: #F46B15;
    box-shadow: rgba(244, 107, 21, 0.25) 0px 48px 100px 0px;
}

#patrice {
    background-color: #84848E;
}
#patrice:hover {
    background-color: #808089;
    box-shadow: rgba(128, 128, 137, 0.25) 0px 48px 100px 0px;
}

#argoz {
    background-color: #AB1832;
}
#argoz:hover {
    background-color: #A11730;
    box-shadow: rgba(161, 23, 48, 0.25) 0px 48px 100px 0px;
}

@media (max-width: 600px) {
    .titlebar {
        margin-bottom: 30px;
    }
    .button {
        width: 140px;
        height: 140px;
        font-size: 14px;
    }
    .buttonss {
        flex-direction: column;
    }
}
