/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    background-color: #E9E8E1; /* Optional: Change background color as needed */
    font-family: 'Afacad', sans-serif; 
    color: #050505; 
    line-height: 1.5; 
}

/* Logo container */
.logo-container {
    width: 100%; /* Ensures full width for proper centering */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 3vh;
}

/* Logo default styling */
.logo {
    width: 50vw;
    height: auto;
    max-width: 550px;
}

h1 {
    margin-top: 9vh;
    max-width: 70vw;
    font-size: 32px;
    text-align: center;
}

.main-text {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    gap: 4vh;
    margin: 9vh 0;
    max-width: 70vw;
    font-size: 24px;
    text-align: center;
}

.contacts {
    display: flex;
    flex-direction: column; 
    max-width: 70vw;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5vh;
}

.contacts-text {
    margin-bottom: 5vh;
}

/* Responsive behavior for smaller screens (mobile devices) */
@media screen and (max-width: 768px) {
    .logo {
        width: 80vw;
        max-width: 80vw; /* 80% of the screen width for mobile */
    }

    h1 {
        max-width: 80vw;
    }
    
    .main-text {
        max-width: 80vw;
    }
    
    .contacts {
        max-width: 80vw;
    }
}