body {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    margin: 0;
    min-height: 98vh;
    background-image: url('assets/img/bg-img.png');
    background-position: center;
    background-size: cover;
    font-family: "Kaushan Script", cursive;
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex;
}

.padding-50 {
    padding: 50px;
}

.bg {
    background-color: #aba59ea3;
}

h1 {
    margin-top: 100px;
    margin-bottom: 15px;
    font-size: 64px;
    text-shadow: 7px 10px 4px rgba(0, 0, 0, 0.5);
}

.disabled img {
    opacity: 0.5;
    pointer-events: none;
}

#start {
    position: relative;
    top: 20%;
}

canvas {
    background-image: url('assets/img/9_intro_outro_screens/start/startscreen_1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

#btn {
    width: calc(100% - 15px);
    margin: 0 10px 0 5px;
    position: absolute;
    top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#btn img {
    cursor: pointer;
    height: 25px;
    width: 25px;
    padding: 0 5px 0 5px;
}

span {
    font-size: 25px;
}

#end-screen img {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
}

#show-info {
    background-color: rgba(63, 62, 62, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#info {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    padding: 20px;
    color: whitesmoke;
    border: solid 1px black;
    border-radius: 30px;
}

#info img {
    background-color: rgba(63, 62, 62, 0.5);
    position: relative;
    right: unset;
    left: 95%;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#info-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#info-text p {
    text-align: center;
}

[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}

[data-title]:after {
    position: absolute;
    bottom: 5px;
    left: 185%;
    content: attr(data-title);
    background-color: #f8c77359;
    color: #111;
    font-size: 100%;
    padding: 1px 10px 2px 5px;
    white-space: nowrap;
    box-shadow: 1px 1px 3px #222222;
    opacity: 0;
    border: 1px solid #111111;
    z-index: 99999;
    visibility: hidden;
    border-radius: 20px;
}

[data-title] {
    position: relative;
}

.return img {
    position: relative;
    top: -17%;
    left: -115%;
    z-index: 1;
    width: 50px !important;
    height: 50px !important;
}

#mobil-move-btn {
    position: relative;
    bottom: 40px;
    display: flex;
    justify-content: space-between;
}

#mobil-move-btn img {
    width: 30px;
    height: 30px;
    padding: 0 30px 0 30px;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: black;
    text-decoration: underline;
}

#i-dp h1 {
    margin-top: 0;
}

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

#footer a {
    color: white;
    margin: 0 10px;
}

#footer a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 720px) {
    h1 {
        font-size: 50px;
    }

    canvas {
        width: 100%;
    }
}

@media (max-width: 380px) {
    [data-title]:after {
        bottom: 35px;
        left: 90%;
        font-size: 83%;
    }    
}

@media (max-width: 320px) {
    [date-title]:after {
        bottom: 35px;
        left: 90%;
    }
}

@media only screen and (max-height: 720px) {
    h1 {
        display: none;
    }

    canvas {
        height: 100vh;
    }
}