*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {  
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
/*     font-family: 'Copperplate', sans-serif; */
    background-image: radial-gradient(circle, #000000 25%, #3a3a3a);
/*     background-color: #d1a553; */
    color: #333;
    display: flex;
    align-items: center;    
    justify-content: center;
    height: 100vh;
}

strong {
    font-size: 1em;
}

.container {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    gap: 1em;
}

.hero img {
    width: 100%;
    height: auto;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}   

.info {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: space-between;
    justify-content: center;
    width: 100%;
    padding: 20px;
    margin: auto;
    gap: 1em;
}   

.info h1 {
    font-size: 2.5em;
}   

.info p {
    font-size: 1.2em;
    margin: auto;   
    text-wrap: wrap;
    text-align: center;
}

.contact-button {
    background-color: #000541;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #0056b3;
}   

@media (max-width: 768px) {
    .info h1 {
        font-size: 2em;
    }   

    .info p {
        font-size: 1em;
    }   
}   

@media (max-width: 480px) {
    .info h1 {
        font-size: 1.5em;
    }   

    .info p {
        font-size: 0.9em;
    }   
}   
                