@import url("https://fonts.googleapis.com/css2?family=Special+Elite&display=swap");

* {
    font-family: "Special Elite";
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    padding-left: 20vw;
    padding-right: 20vw;
}

#main-title {
    font-size: xxx-large;
    text-align: center;
    padding-top: 32px;
    font-family: "Special Elite";
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(100%);
}

#carouselExampleControls {
    position: relative;
    width: 60vw;
    height: 50vh;
    border: 1px solid black;
    margin-top: 32px;
}

.carousel-inner {
    width: 100%;
    height: 100%;
}

.carousel-item {
    width: 100%;
    height: 100%;
}

.carousel-item-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.carousel-item-wrapper > p {
    padding: 10%;
    text-align: center;
}

#tape-image {
    position: absolute;
    width: 60vw;
    height: 50vh;
    z-index: -1;
    margin-top: 25px;
}

#podcast-info-div {
    width: 60vw;
    height: 50vh;
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

#podcast-info-div > div {
    padding: 32px;
    width: calc(30vw - 16px);
    height: 50vh;
    border: 1px solid black;
}

#podcast-info-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#podcast-info-text-div > p {
    margin: 8px;
}

#podcast-credits-div {
    width: 60vw;
    height: 50vh;
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

#podcast-credits-div > div {
    padding: 32px;
    width: calc(30vw - 16px);
    height: 50vh;
    border: 1px solid black;
}

#podcast-credits-sounds-div > a {
    display: block;
    margin: 8px;
}

#podcast-info-image-island {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#made-by-p {
    margin: 32px;
    text-align: center;
}

@media (max-width: 1000px) {
    body {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    #carouselExampleControls {
        width: 90vw;
    }
    
    #tape-image {
        position: absolute;
        width: 90vw;
        height: 50vh;
        z-index: -1;
        margin-top: 25px;
    }

    #podcast-info-div {
        width: 90vw;
    }

    #podcast-info-div > div {
        width: calc(45vw - 16px);
    }

    #podcast-credits-div {
        width: 90vw;
    }

    #podcast-credits-div > div {
        width: calc(45vw - 16px);
    }
}
