@font-face {
    font-family: Mokoto;
    src: url(Assets/Fonts/Mokoto\ Regular.ttf);
}

@font-face {
    font-family: Oswald;
    src: url(Assets/Fonts/Oswald-VariableFont_wght.ttf);
}

@font-face {
    font-family: Lexend;
    src: url(Assets/Fonts/Lexend-VariableFont_wght.ttf);
}

*{
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    font-family: Oswald;

    background-image: url("Assets/BG_2024-25.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 15% 50%;
}

.bg-overlay{
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-color: black;
    z-index: -1;
    margin: 0;
    padding: 0;
    opacity: 20%;
}

.bg-overlay-vignette {
    position: absolute;
    height: 100vh;
    width: 100vw;
    z-index: -1;
    margin: 0;
    padding: 0;
    box-shadow: inset 0 0 20rem rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .bg-overlay-vignette {
        box-shadow: inset 0 0 10rem rgba(0, 0, 0, 0.5); /* Reduced shadow intensity for iPhones */
    }
}

.container{
    width: 91%;
    max-width: 680px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5vh;
}

#logo{
    width: 250px;
    height: 250px;
    border-radius: 25%;
    overflow: hidden;
    margin-top: 1rem;
    padding-bottom: 20px;
}

#title{
    font-family: Oswald;
    font-size: 3rem;
    font-weight: bolder;
    padding: 0;
    margin: 0;
    text-shadow: 2px 2px 2px black;
}

#subtitle{
    font-family: Oswald;
    font-size: 1rem;
    font-weight: lighter;
    padding-bottom: 20px;
    text-shadow: 2px 2px 2px black;
}

a{
    text-decoration: none;
    color: black;
}

.tile{
    width: 100%;
    height: 56px;
    background-color: pink;
    margin: 7px;
    border-radius: 17px;
    opacity: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Lexend;
    box-shadow: 3px 3px 0px black;
}

.tile:hover{
    transition: cubic-bezier(.07,1.41,.82,1.41) 0.2s;
    transform: scale(1.02);
}

.tile-share-button{
    margin: 8px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.icon{
    margin: 6px 8px;
    width: 44px;
    height: 44px;
}

.tile-share-button img{
    margin-left: 8px;
    margin-top: 7px;
    width: 25px;
    height: 25px;
}