*,
*::before,
*::after {
    box-sizing: border-box;
}
:root {
    --header-height: 82px;
}

html,
body {
    width: 100%;
    height: 100%; 
    margin: 0;
    padding: 0;
    font-family: 'Poppins', serif, sans-serif;
    background-color: rgba(218, 177, 218, 0.1);
}

body {
    padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}
@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }
}

.contactBody {
    flex: 1;
    width: 100%;
    max-width: 100%;

    border-block: solid black;
    border-radius: 1%;
    background-color: whitesmoke;

    display: flex;
    align-items: center;    
    justify-content: center; 
}

.contactBody h2 {
    text-align: center;
    color: purple;
}

.contact {
    color: black;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
}

.contact a {
    color: purple;
    font-size: 24px;
    text-decoration: none;
}

.contact a:hover {
    color: black;
}

.contact a:active {
    color: purple;
}
.terms{
    background-color: whitesmoke;
    border-block: solid black;
    border-radius: 5px;
    padding: 5px;
}