* {
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #2a2a2a;
    text-align: center;
    color: #fffcf3;
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75em;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 95dvh;
    background-color: #2a2a2a;

}

.title {
    color: #fffcf3;
    font-size: 7vw;
    display: flex;
    gap: 20px;
}

.letter {
    position: absolute;
    bottom: 10%;
    z-index: 10;
}

.letter-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn {
    font-size: 2.75vw;
    border-radius: 100px;
    color: #2a2a2a;
    background-color: #fffcf3;
    padding: 0 1em;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #b1aeaa;
}