*{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    font-weight: 600;
}

a:hover{
    color: #02457a;
    text-decoration: none;
}

body{
    /* max-width: 1280px; */
    margin: 0 auto;
    background-color: rgb(240, 240, 240);
    font-family: 'Poppins', sans-serif;
}

h1{
    text-align: center;
    color: #02457a;
}

.flex{
    width: 1000px;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

img{
    width: 100px;
}

.clickable{
    width: 50%;
    height: 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 10px 5px 16px 5px rgba(2, 69, 122, 0.7)
}
