body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    cursor: default;
    color: white;
}
section {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 50vh;
    padding: 100px 20px;
    box-sizing: border-box;
}
.heading {
    background-image: url(images/top_gory.png);
    background-position: bottom center;
    background-size: cover;
    min-height: 100vh;
    flex-direction: column;
    box-shadow: inset 0 -100px 20px -50px black;
}
.heading > h1 {
    margin: 0;
    color: white;
    font-size: 50px;
    text-align: center;
}
.heading > h2 {
    margin: 0;
    font-size: 30px;
    font-weight: normal;
}
.side {
    gap: 100px;
}
.side.nogap {
    gap: 0;
}
.side p, .int p {
    max-width: 475px;
    font-size: 20px;
}
.int {
    flex-direction: column;
}
.int p {
    text-align: center;
}
.int h3 {
    font-size: 30px;
}
.int-btn {
    display: inline-block;
    padding: 10px;
    border: 2.5px solid white;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    margin: 10px;
    font-weight: bold;
}
.int.kon p {
    background: white;
    padding: 10px 30px;
    color: black;
    border-radius: 10px;
}
.int.kon p a {
    color: black;
    text-decoration: none;
}
.int.kon p a:hover {
    text-decoration: underline;
}
footer {
    background-color: #000;
    text-align: center;
    padding: 20px;
    font-size: 15px;
}
.left, .right {
    position: relative;
}
.imgside::after {
    box-shadow: inset 0 -100px 20px -50px black;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
@media only screen and (max-width: 600px) {
    * {
        text-align: center;
    }
    .side {
        flex-direction: column;
        gap: 20px;
    }
    .side.rev {
        flex-direction: column-reverse;
    }
    .side img {
        transform: scale(0.75);
    }
  }