main {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main .title {
    color: white;
    border-radius: 10px;
    text-align: center;
    animation: summon 2s;
    margin-bottom: 20px;
    background-color: black;
    padding: 20px;
    margin-top: 20px;
}

.cont {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    animation: summon 2s;
}

main .alttitle {
    display: flex;
    background-color: black;
    color: white;
    animation: summon 2s;
    border-radius: 20px;
    padding: 20px;
}

.suggest {
    background-color: black;
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin: 20px;
    width: 500px;
    max-width: 100vw;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.suggest p {
    margin-bottom: 20px;
}

.suggest h2 {
    margin-bottom: 20px;
}
main .suggestions {
    background-color: black;
}

.rowcla {
    display: flex;
    flex-direction: row;
}

@media (max-width: 1100px) {
.cont {
    grid-template-columns: repeat(1, 2fr);
}

.suggest {
    margin: 0;
    margin-bottom: 10px;
    height: fit-content;
}

.suggest p {
    margin-bottom: 1px;
}
}

 
@keyframes summon {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100;
    }
}