:root {
    --black: #000000;
    --mainblue: #283978;
    --accentblue: #CDEEFC;
    --white: #FFFFFF;
}

html {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 900px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
}

main {
    display: flex;
    flex-direction: column;
    height: auto;
    width: auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
main img {
    width: 200px;
    height: auto;
}
main h1 {
    margin: 0;
    color: var(--black);
    font-size: 30px;
}
main h2 {
    margin: 0;
    color: var(--mainblue);
    font-size: 20px;
}

.link-btn {
    width: auto;
    height: auto;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--mainblue);
    border-radius: 20px;
    transition: all 0.2s ease-in;
}

.link-btn h2 {
    color: var(--white);
    font-size: 17px;
}

.link-btn:hover {
    background-color: var(--white);
    box-shadow: 0px 2px 5px var(--mainblue);
}

.link-btn:hover h2 {
    color: var(--mainblue);
}

@media screen and (max-width: 600px) {
    body {
        height: 600px;
    }
}