body {
    background-image: url('img/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.center-text {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

h1 {
    margin: 0 0 70px;
} 

h2 {
    color: #9b6c29;
    font-size: 28px;
    text-align: center;
    margin: 0 0 35px;
}

.info-text {
    text-align: center;
    font-size: 20px;
    margin: 0 0 45px;
}

.info-text a {
    color: #4e5255;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
}

.info-text a:hover {
    color: #9b6c29;
}

.social-icons {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
}

.social-icons li {
    display: inline-block;
    padding: 0 12px;
    transition: all 0.3s ease-in-out;
}

.social-icons li:hover {
    opacity: 0.5;
}

@media only screen and (max-width: 720px) {
    .center-text {
        width: 80%;
    }

    h1 img {
        width: 100%;
        height: auto;
    }

    h1 {
        margin: 0 0 35px;
    }

    h2 {
        font-size: 20px;
    }

    .info-text {
        font-size: 16px;
    }
}