*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    overflow-x: hidden;
}
.landing__container{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.logo__container img{
    height: auto;
    width: 150px;
    object-fit: contain;
}

.links__container a{
    margin-left: 20px;
    padding: 0.8rem 1.2rem;
    background-color: #0a66c2;
    text-decoration: none;
    color: #fff;
    border-radius: 7px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 15%), 0 2px 3px rgb(0 0 0 / 20%);

}
.links__container :nth-child(2){
    background-color: lightgray;
    cursor: pointer;
}