@import url("fonts.css");

html,
body {
    height: 100vh;
}

body {
    font-family: "Roboto Slab";
    background-color: #ffdd00;
    display: flex;
    flex-direction: column;
}

h1 {
    font-weight: bold;
    color: #e52f77;
    font-size: 3rem;
}

a,
a:visited {
    color: #e52f77;
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer {
    background-color: white;
}

footer .container {
    position: relative;
}

footer .container:before {
    content: "";
    background-image: url("footer-top.svg");
    width: 300px;
    height: 22px;
    bottom: calc(100% - 2px);
    right: 0;
    position: absolute;
    display: block;
    background-repeat: no-repeat;
}

footer .footer-img {
    max-height: 100px;
    padding: 15px;
}