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;
}

.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);
}

#policy {
    padding: 10%;
    opacity: 0.7;
    font-size: 18px;
    text-align: center;
}

img {
    max-width: 6%;
    height: auto;
}

h1 a {
    text-decoration: none;
    color: inherit;
}

.glass {
    background: white;
    min-height: 30vh;
    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;
    
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

@media only screen and (max-width: 1300px) {
    .glass {
        min-height: 50vh;
    }
}

@media only screen and (max-width: 420px) {
    .title {
        width: auto;
        border-radius: 0;
    }
    .titleh1 {
        padding: 1rem;
        opacity: 0.7;
        font-size: 30px;
    }
    img { 
        max-width: 10%;
        height: auto;
    }
    
    .glass {
        min-height: 60vh;
        width: 100%;
        border-radius: 0;
        gap: 5%;
    }
}
