/* 1. Fonts */
@font-face {
    font-family: 'custom';
    src: url('../font/Bebas-Regular.otf') format('opentype'),
        url('../font/Bebas-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* 2. Global Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #242424;
    color: #ffffff;
    font-family: 'custom', Arial, sans-serif;
    text-align: center;
}

/* 3. Elements */
.logo img {
    max-width: 35%;
    margin: 20px 0;
}

p {
    font-family: 'custom';
    margin: 0;
}

.location {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.halfblock {
    display: flex;
    align-items: center;
    margin: 0 10px;
    min-width: 150px;
}

.website-soon {
    margin-top: 20px;
    font-size: 2em;
    color: #ffd800;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
}

.social-icons img {
    width: 50px;
    height: 50px;
}

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

.location-item p {
    font-size: 24px;
    text-align: left;
}

/* 4. Media Queries */
@media screen and (max-width: 1225px) and (min-width: 688px) {
    .logo img {
        max-width: 50%;
    }
}

@media screen and (max-width: 687px) {
    .logo img {
        max-width: 90%;
    }
}