/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-image: url(dot-grid.webp);
    background-repeat: repeat;
}

a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 4px;
}

a:hover {
    text-decoration: underline;
}

img {
    width: 100%;
    height: auto;
}

/* Centering the content using Flexbox */
.container {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
    /* Stacks logo and contact info vertically */
}

.logo {
    max-width: 300px;
    /* Adjust the size as needed */
    margin-bottom: 20px;
}

.contact-info {
    font-size: 16px;
    margin-bottom: 1em;
}

.contact-info h1 {
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-forms div {
    margin-bottom: 1em;
}

.contact-forms h2 {
    color: white;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-forms h3 {
    color: #585858;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Components */
.dialog {
    margin: 16px;
    background: linear-gradient(to bottom, #fff 20%, #A0A951 20%);
    padding: 1em;
    border-radius: 15px;
    box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 300px) {
    .dialog {
        background: linear-gradient(to bottom, #fff 15%, #A0A951 15%);
    }


}