*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Abhaya Libre', serif;
    outline: none;
    border: none;
}

body,html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100vh;
    background: url('../assets/cover.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    cursor: pointer;
    padding: 40px;
    border-radius: 10px;
    text-decoration: none;
}

.col:hover {
    background: rgba(0, 0, 0, 0.197);
}

.col img {
    width: 400px;
    margin-bottom: 20px;
}

@media (max-width: 1000px) {

    .col {
        font-size: 20px;
        padding: 20px;
    }

    .col img {
        width: 250px;
        margin-bottom: 20px;
    }

}

@media (max-width: 600px) {

    body {
        flex-direction: column;
        justify-content: center;
        row-gap: 40px;
    }
}