html, body {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100dvw;
    height: 100dvh;
    font-family: 'Montserrat', sans-serif;
}

p {
    color: #E66326;
    font-weight: 600;
    margin: 0;
}

.logo {
    display: flex;
    width: 300px;
    margin-bottom: 20px;
}

h3 > a {
    cursor: pointer;
    text-decoration: none;
    color: #066470;
    transition: 0.3s all ease;
}

h3 > a:hover {
    text-decoration: underline wavy #066470;
    color: #E66326;
}