@font-face {
    font-family: 'MyCambria';
    src: url('/assets/fonts/Cambria_m.ttf') format('truetype');
}


body {
    background-color: #ccc;
    overflow: hidden;
    height: auto;
    font-family: Cambria, 'MyCambria', serif;
}

.logo {
    position: relative;
    width: 100%;
    height: 100%;
}

.logo>div {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo>div>div {
    text-align: center;
}

#gif {
    width: 250px;
    max-width: 100%;
    background: none;
}

#title {
    font-size: 2rem;
    color: #ce2900;
    text-transform: uppercase;
}

#sub {
    font-size: 1.2rem;
    margin-top: 1rem;
}

#writings {
    opacity: 0;
    transition: 1.5s;
}

#close {
    background-image: url("/assets/images/x.webp");
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
    background-size: cover;
}

@media screen and (max-width:720px) {
    #title {
        font-size: 1.8rem;
    }

    #sub {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
}