main {
    min-height: 100vh;
    background: linear-gradient(to right top, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overflow: auto;
}

.titleh1 {
    padding: 1rem;
    opacity: 0.7;
    font-size: 50px;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;

    background: white;
    min-height: 8vh;
    width: auto;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 3rem;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

img {
    max-width: 6%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.glass {
    background: white;
    min-height: 70vh;
    width: 60%;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80%;
}

h1 {
    padding: 1rem;
    opacity: 0.7;
    font-size: 40px;
}

p {
    opacity: 0.7;
    font-size: 18px;
}

div a {
    color: inherit;
    text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
    .glass {
        min-height: 60vh;
        width: 90%;
        gap: 10px;
    }

    div {
        width: 95%;
    }

    h1 {
        font-size: 25px;
    }
}

@media only screen and (max-width: 420px) {
    .title {
        width: auto;
        border-radius: 0;
    }
    h1 {
        font-size: 25px;
    }
    img { 
        max-width: 10%;
        height: auto;
    }

    p {
        font-size: 16px;
    }
    
    .glass {
        min-height: 80vh;
        width: 100%;
        border-radius: 0;
        gap: 5%;
    }
}