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

@font-face {
    font-family: 'Proph';
    src: url('./fonts/proph.ttf') format('opentype');
}

html
{
    font-family: 'Proph';
    background-color:whitesmoke;
    color: black;
    background-position: center;
}

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

#container-desktop
{
    display: none;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 100vw;
    height: 100vh;
    padding: 15vh 15vw 15vh 15vw;
}

#container-mobile
{
    display: none;
    width: 94vw;
    height: 96vh;
    padding-top: 4em;
    padding-left: 4em;
    padding-bottom: 4em;
    margin: 30px;
    border: 5px solid black;
    align-items: center;
}

.desktop-item
{
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
}

.mobile-item
{
    display: flex;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    float: left;
}

#mobile-map
{
    width: 3em;
    height: 3em;
    object-fit: contain;
    padding: 20px;
    border: 5px solid black;
    margin: 0;
}

.logo
{
    width: 10em;
    margin-top: 25px;
}

.text
{
    font-size: 3.5em;
    letter-spacing: 2px;
    line-height: 80px;
    overflow: scroll;
}

#wrapper-text
{
    width: fit-content;
    height: fit-content;
}

.letter
{
    background-position: center;
    background-size: 50%;
}

.menu
{
    background-position: 50% 30%;
    font-size: 0;
    background-size: 100%;
    color: white;
}

#back-button
{
    display: none;
    position: absolute;
    top: 30px;
    left: 30px;
    border: 1px solid black;
    padding: 5px;
}

#back-button:hover
{
    cursor: pointer;
    background-color: black;
    color: white;
}