*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    margin: 0;
    padding: 60px 40px;
    background-image: url("../p/index-bg.png");
    background-color: black;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-family: "Hanken Grotesk";
    color: #262628;
}

h1 {
    font-family: "Karabine";
    font-size: 3rem;
    margin: 0;
    color: #3f3f43;
}

.before-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}

.before-header img {
    height: 30px;
}

#header {
    background-color: white;
    position: relative;
}

#header h1 {
    padding: 20px;
    border: 5px solid #6c6c74;
    box-shadow: 10px 10px 10px #2d2d30;
}

#header img {
    position: absolute; 
    right: -25px;
    top: -25px;
    rotate: 5deg;
}

h3 {
    font-family: Aquiline;
    color: white;
    font-size: 2rem;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.5;
}

.columns {
    display: flex;
    flex-direction: row;
}

.list {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.inactive-link {
    color: #acacb8;
    text-decoration: line-through;
}

.inactive-link:hover {
    cursor: default;
}

a {
    text-decoration: none;
    color: white;
}

a:not(.inactive-link):hover {
    text-decoration: underline;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
}

iframe {
    height: 15px;
}

@media only screen and (max-width: 600px) {
    .columns {
        flex-direction: column;
    }

    #header img {
    right: -10px;
    top: -20px;
    rotate: 5deg;
}
}