@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeueLT.woff2') format('woff2'); /* woff2 fonts format */
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #404C3F;
    font-family: 'Helvetica Neue', sans-serif; /* Use Custom Font */
    color: #E6DBCC;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-image: url('background-laptop.jpg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    body {
        background-image: url('background-tablet.jpg');
    }
}

@media (max-width: 480px) {
    body {
        background-image: url('background-phone.jpg');
    }
}

h1 {
    font-family: 'Helvetica Neue', sans-serif; 
    color: #E6DBCC;
    margin-bottom: 10px;
}

.separator {
    width: 60%;
    height: 2px;
    background-color: #E6DBCC;
    margin-bottom: 20px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E6DBCC;
    color: #855F2D;
    padding: 10px 15px;
    margin: 8px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    width: 70%;
    max-width: 250px;
    transition: background-color 0.3s, color 0.3s;
}

.button:hover {
    background-color: #855F2D;
    color: #E6DBCC;
}

.icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

footer {
    position: absolute;
    bottom: 10px;
    font-size: 12px;
    color: #E6DBCC;
}

@media (max-width: 600px) {
    .button {
        width: 80%;
    }
}