/* fonts */

@font-face {
    font-family: "custom";
    src: url("../fonts/custom.woff2") format("woff2");
}

* {
    box-sizing: border-box;
    outline: none;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: #adb7ad;
}

.about {
    margin: 11px 15px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 15px 11px 15px;
}

p {
    font-family: 'custom', sans-serif;
    font-size: 35px;
    line-height: 40px;
    margin: 10px 0;
}

p:first-child {
    margin-top: 0;
}

a {
    color: black;
    text-decoration: none;
}

.hover-image {
    position: relative;
}

.hover-image:hover>img {
    display: block;
}

img {
    display: none;
    position: absolute;
    left: 37vw;
    top: 15vh;
    display: none;
    width: 20vw;
    height: auto;
    margin: 0;
    border-radius: 0.25rem;
}

@media (max-width: 844px) {
    p {
        font-size: 27px;
        line-height: 35px;
    }
    .footer {
        position: absolute;
        bottom: unset;
        left: unset;
        right: unset;
        margin: 50px 15px 0 0;
    }
}

@media (max-width: 360px) {
    p {
        font-size: 20px;
        line-height: 25px;
    }
}