@font-face {
    font-family: "Odin";
    src: url("../fonts/UncialAntiqua-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: #f5f6fa;
    font-family: "Inter", sans-serif;
}

.TitleDiv {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.Title {
    font-family: "Odin", sans-serif;
    display: block;
    font-size: 6em;
    font-weight: 800;
    margin-top: 0.5em;
    color: #1c1c1c;
    cursor: pointer;
}

.Menu {
    width: 90%;
    max-width: 70em;
    margin: 2em auto;
    display: grid;
    gap: 1.8em;
}

.Card {
    background: white;
    border-radius: 1em;
    box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.05);
    padding: 1.5em;
}

.hidden {
    display: none;
}

.blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
}

.popup {
    background: white;
    padding: 2em;
    border-radius: 1em;
    width: 25em;
    text-align: center;
    box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.popupMessage{
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.popupButton {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;    
}

.popupCloseButton {
    position: relative;
    left: 90%;
    width: 1em;
    height: 1em;
    background: none;        
    border: none; 
    padding: 0px;
    margin: 0px 18px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.backArrow{
    content: '';
    width: 3em;
    height: 3em;
    background-color: white;
    box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.05);;
    background-image: url("../icons/back.png");
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 25em;
}