:root {
    --purple: #503291;
    --dark-purple: #3b256a;
}

* {
    box-sizing: border-box;
}

html {
    font-family: 'Roboto', sans-serif;
}

body {
    font-size: 16px;
    margin: 0;
    overflow-x: hidden;
    padding: 0;
}

a {
    text-decoration: none;
}

#container {
    height: 100vh;
    position: relative;
}

#content {
    padding: 30px 30px 100px;
    position: relative;
    text-align: center;
    z-index: 100;
}

.logo {
    max-width: 250px;
}

h1 {
    font-size: 1.875rem;
    font-size: clamp(1.875rem, 1.45rem + 2.125vw, 4rem);
    font-weight: 500;
    margin: 2.5rem 0 2rem 0;
    padding: 0;
}

.button {
    background-color: var(--purple);
    border-radius: 8px;
    color: white;
    display: inline-block;
    font-size: 1.25rem;
    font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    margin: 2rem 0 3rem 0;
    padding: calc(4px + 1%) calc(6px + 2%);
    transition: background-color 200ms ease-in;
}

.button:hover {
    background-color: var(--dark-purple);
}

.button:active {
    transform: scale(0.98);
}

address {
    font-style: normal;
    font-weight: 500;
}

address p {
    font-size: 1rem;
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
    margin: 0.5rem 0;
}

#container::after {
    background: url(../images/bottom-pattern-1.svg) no-repeat 0 0;
    background-size: cover;
    bottom: 0;
    content: "";
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 1;
}

@media (min-width: 769px) {
    .logo {
        max-width: 400px;
    }
}

@media (min-width: 968px) {
    #content {
        padding: 5% 0 20px 10%;
        margin-bottom: 5%;
        text-align: left;
    }

    #container::after {
        background: url(../images/right-side-pattern-1.svg) no-repeat top;
        background-size: cover;
        height: 100vh;
        position: fixed;
        right: 0;
        width: 100%;
    }
}