@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}
body{
    width: 100%;
    height: 100vh;
    background-color: #003e4f;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: .9rem;

}

a{
    text-decoration: none;
    list-style: none;
    color: white;
}

.container{
    height: 100vh;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}

.container p{
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}