a:link{
    text-decoration:none;
    color: rgb(49, 98, 244);
}

a:visited{
    color: rgb(86, 117, 139);
}

.container{
    position: relative;
    width: 900px;
    height: 780px;
    margin: auto;
}

img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes pulse{
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
}

.landing-link{
    position: absolute;
    top: 190px;
    right: 200px;
    font-family: "Silkscreen", sans-serif;
    font-size: 85%;
    animation: pulse 3.5s ease-in-out infinite;
    z-index: 100;
}