@font-face {
    font-family: 'Montserrat';
}

* {
    box-sizing: border-box;
    margin: 0;
}

a {
    all: unset;
}

body {
    background-color: #062E29;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px
}

#logo {
    font-weight: normal;
    font-size: 1.5rem;
    letter-spacing: -0.75px;
    color: white;
}

#words {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 30vh;
    align-self: center;
    text-align: center;
}

#words p {
    margin: 0;
    font-size: 1rem;

    color: white;
}

#contact-button {
    all: unset;
    background: white;
    border-radius: 12px;
    height: 44px;
    text-align: center;
    font-size: small;
    align-self: center;
    width: 90vw;
    color: #3D3D3D;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

@media (min-width: 800px) {
    #contact-button {
        width: 10vw
    }
}