/* © 2025 Romar Jabez */

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-image: url('../img/background.webp');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

main {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: white;
    padding: 10px 5px;
    height: 93vh;
}

.logo-img {
    width: 400px;
    height: auto;
    content: url('../img/logo/logo.webp')
}

@media (max-width: 430px) {
    .logo-img {
        width: 300px;
        content: url('../img/logo/logo-vertical.webp');
    }
}

@media (max-width: 429px) {
    .logo-img {
        width: 100%;
    }
}

.message {
    font-family: 'SFProText', sans-serif;
    font-size: 18px;
    text-align: center;
}

.highlight {
    background-color: #E5A62D;
    color: #0D2C42;
    font-weight: 600;
    padding: 0px 5px;
}

.hr {
    width: 480px;
    height: 1px;
    background-color: white;
    margin-top: 20px;
}

@media (max-width: 535px) {
    .message {
        margin-top: -30px;
    }

    .hr {
        width: 90%;
    }
}

.contact-details {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.contact, .link {
    display: flex;
    gap: 5px;
}

.contact {
    word-break: break-word;
}

.contact:hover {
    text-decoration: underline;
}

.link-icon {
    font-size: 8px;
}

.details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.copyright {
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
}