<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@media only screen and (max-width: 500px) {
.section{
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.text-border{
    margin: 0 auto;
    display: flex;
    border-radius: 30px;
    border: 7px solid #618c7b;
    box-shadow: 0 0 40px #95cfb4bc;
    background-color: #375048a1;
    box-sizing: border-box;
    padding: 30px 50px;
    backdrop-filter: blur(5px);
}

.title{
    font-family: "Montserrat";
    color: white;
    text-shadow: 0 0 25px #223830b1;
    font-size: 2.5vw;
    font-weight: 700;
    margin: auto;
    margin-right: 1vw;
    display: block;
    white-space: nowrap;
}

.subtitle{
    font-family: "Montserrat";
    color: #a9d6c8;
    text-shadow: 0 0 10px #bbddd2;
    font-size: 0.8vw;
    font-weight: 300;
    margin: 0 auto 0 0;
}

#logo{
    width: 7vw;
    margin-top: -2vh;
    margin: auto;
}

.slogan{
    font-family: "Poppins";
    color: white;
    text-shadow: 0 0 25px #223830b1;
    font-size: 1.5vw;
    font-weight: 500;
    margin: auto;
    width: 80%;
    text-align: center;
    text-shadow: 0 0 20px #d1d1d14d;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.main-image{
    object-fit: cover;
    object-position: center center;
    width: 15vw;
    height: 15vw;
    position: relative;
    border-radius: 10px;
    border: 2px solid #3e3e3ee1;
    box-shadow: 0 0 50px #00000085;
    transform: translateX(11%);
    transition: 0.2s;
    z-index: 0;
}

.main-image:hover{
    transform: scale(1.3);
    transition: 0.2s;
    z-index: 1;
}

.top-left{
    top: 5%;
}

.bottom-right{
    bottom: 5%;
    left: 30%;
}

.top-right{
    top: 5%;
    left: 30%;
}

.bottom-left{
    bottom: 5%;
}
}

@media only screen and (min-width: 501px) {
.section{
    height: 70%;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.text-border{
    margin: 0 auto;
    display: flex;
    border-radius: 30px;
    border: 7px solid #618c7b;
    box-shadow: 0 0 40px #95cfb4bc;
    background-color: #375048a1;
    box-sizing: border-box;
    padding: 30px 50px;
    backdrop-filter: blur(5px);
}

.title{
    font-family: "Montserrat";
    color: white;
    text-shadow: 0 0 25px #223830b1;
    font-size: 2.5vw;
    font-weight: 700;
    margin: auto;
    margin-right: 1vw;
    display: block;
    white-space: nowrap;
}

.subtitle{
    font-family: "Montserrat";
    color: #a9d6c8;
    text-shadow: 0 0 10px #bbddd2;
    font-size: 0.8vw;
    font-weight: 300;
    margin: 0 auto 0 0;
}

#logo{
    width: 20vw;
    margin: auto;
    margin-top: -2vh;
}

.slogan{
    font-family: "Poppins";
    color: white;
    text-shadow: 0 0 25px #223830b1;
    font-size: 1.5vw;
    font-weight: 500;
    margin: auto;
    width: 80%;
    text-align: center;
    text-shadow: 0 0 20px #d1d1d14d;
    text-decoration: underline;
    text-underline-offset: 4px;
}   

.main-image{
    object-fit: cover;
    object-position: center center;
    width: 15vw;
    height: 15vw;
    position: relative;
    border-radius: 10px;
    border: 2px solid #3e3e3ee1;
    box-shadow: 0 0 50px #00000085;
    transform: translateX(11%);
    transition: 0.2s;
    z-index: 0;
}

.main-image:hover{
    transform: scale(1.3);
    transition: 0.2s;
    z-index: 1;
}

.top-left{
    top: 5%;
}

.bottom-right{
    bottom: 5%;
    left: 30%;
}

.top-right{
    top: 5%;
    left: 30%;
}

.bottom-left{
    bottom: 5%;
}
}</pre></body></html>