body{
    margin: 0;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.landing-page{
    background-image: url("assets/180DC_Background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.inner-landing-page{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(2px);
}

.logo{
    width: 28%;
}

h2{
    color: lightgreen;
    padding-top: 2%;
    font-size: 1.8rem;
}

.title{
    color: white;
}

.signing-off-page{
    display: flex;
    flex-direction: column;
    background-color: black;
    align-items: center;
}

.sgn-title{
    color: white;
    font-size: 2.2rem;
    padding-top: 2%;
    font-family: 'Combo', cursive;
}

.coco-img{
    width: 40%;
}

p{
    color: white;
}

@media(max-width:600px) {
    .logo{
        width:80%;
    }
    .coco-img{
        width: 80%;
    }
}