@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans&display=swap');

:root {
    --aspit-green: #194541;
    --aspit-red: #ff5747;
    --aspit-white: #fff;
}
body {
    background-color: var(--aspit-green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Kumbh Sans', sans-serif;
    color: var(--aspit-white);
}
svg { 
    max-width: 100%;
}
.white-fill {
    fill: var(--aspit-white);
}
.red-fill {
    fill: var(--aspit-red);
}
.page-logo .aspit-dot {
    animation: dot 3s infinite;
}
@keyframes dot {
    0% {transform: translateY(0%)}
    12.5% {transform: translateY(-5%)}
    25% {transform: translateY(0%)}
}
.page-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    min-height: 100vh;
}
h1 {
    font-size: 24px;
}
.page-logo {
    margin: 0 auto;
    max-width: 300px;
}
.page-title {
    font-size: 40px;
    font-weight: bold;
    display: flex;
    justify-content: center;
}
.footer {
    height: 50px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.content-boxes {
    flex: 1;
    margin-top: 30px;
}
.description {
    margin: 0 auto;
    border-radius: 20px;
    width: 50%;
    line-height: 1.5;
    text-align: center;
}
.links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
    
}
.links a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin: 0 10px;
    margin-bottom: 20px;
    padding: 30px;
    background-color: var(--aspit-red);
}
.links a:nth-child(5) img {
    display: inline-block;
}
.brand {
    transition: transform .3s;
    height: 30px;
}
.brand:hover {
    transform: scale(1.1);
}
.footer span {
    line-height: 2;
    text-align: center;
}
.portfolio {
    color: var(--aspit-white);
    white-space: nowrap;
}
.brand:hover {
    cursor: pointer;
}
@media screen and (max-width: 1100px) {
    .links a {
        width: 160px;
        padding: 15px;
        border-radius: 12px;
    }
    .brand {
        height: 20px;
    }
}
@media screen and (max-width: 600px) {
    .page-logo {
        width: 200px;
    }
    .page-title {
        font-size: 30px;
    } 
    .description {
        width: 75%;
    }
}
/*
WRAP løsning

@media screen and (max-width: 1000px) {
    .links {
        flex-wrap: wrap;
    }
    .links a {
        max-width: 30%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .links a:nth-child(3) {
        max-height: 40%;
    }
}
*/