@import url("./style.css");

body{
    font-family: 'lato-light', sans-serif;
    margin: 0;
    background-color: #000;
}
.index_link{
    font-size: 25px !important;
}
.index_a{
    height: 100% !important;
}
.img-wrapper{
    display: flex;
    display: -webkit-flex;
    flex: 1 0 auto;
    justify-content: center;
}
.mobile-button-margin-top{
    margin-top: 30vw !important;
}

.img-wrapper-safari{
    display: block;
}
.logo{
    width: 50%;
}
.logo-safari{
    width: 50%;
    margin-left: 25%;
}

.slogan{
    font-size: 3vw;
    text-align: center;
}

.index-slogan{
    color: white !important; 
    font-size: 30px !important;
}

.welcome-button{
    border: white 1px solid;
    border-radius: 10px;
    font-size: 30px;
    height: 100%;
    width: 100%;
    transition: all 1s ease-in-out;
    padding-top: 1vw !important;
    padding-bottom: 1vw !important;
}

.button-text{
    padding: 3%;
    font-family: 'Lato', sans-serif;
}

.row{
    margin-top: 10%;
    display: flex;
    justify-content: space-around;
}

.welcome-button:hover{
    transform: scale(1.05);
}

/* For mobile devices */
@media only screen and (max-width: 600px) {
    .logo{
        margin-top: 20%;
        width: 80%;
    }
    .welcome-button{
        font-size: 4vw;
        padding-bottom: 0;
        padding-top: 0;
    }
}