.container{
    background-image: url("./wall-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

@keyframes fade-up{
    from {opacity:0; top:100px;}
    to {opacity: 100; top:0px;}
}

.content{
    width: min-content;
    height: min-content; 
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align:center;
    visibility: hidden;
}

.content-slide{
    animation: fade-up;
    animation-duration:1s;
    /* animation-delay: .5s; */
    visibility: visible;
}

button{
    border: 1px solid white;
    background-color: transparent;
    color:white;
    padding: 10px 25px;
    margin-top: 10px;
    width: 100%;
    text-align: center; 
    transition: all .3s ease;
}

button:hover{
    background-color: white;
    color: black;
    transition: all .3s ease;
}

button:hover .ri-mail-lines{
    color:black;
    transition: all .3s ease;
}
button:hover a{
    color:black;
    transition: all .3s ease;
}

.ri-mail-line{
    vertical-align:text-bottom;
    padding-right: 5px;
}

.contact-text{
    vertical-align:middle;
    font-family: 'Archivo', sans-serif;
    letter-spacing: 2px;
}

a{
    color: white;
    text-decoration: none;
}