/* BASE STYLES */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

.hotbar {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

.hotbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.hotbar ul li {
    display: inline;
}

.hotbar ul li a {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
}

.hotbar ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 20px;
    position: relative;
    height: auto;
    min-height: 800;
}

.container .item-1,
.container .item-2,
.container .item-3,
.container .item-4 {
    background-color: rgba(127, 127, 127, 0.4);
    padding: 20px;
    margin-bottom: 100px;
    border-radius: 20px;
}

.item-1 {
    width: 900px;
    height: 600px;
    margin-right: 20px;
    position: relative;
}

.item-2 {
    width: 500px;
    height: 600px;
    margin-left: auto;
    color: white;
    font-size: 24px;
    line-height: 2;
}

.item-4 {
    width: 500px;
    height: 600px;
    margin-left: auto;
    color: white;
    font-size: 24px;
    line-height: 1.25;
}

.item-2 h2,
.item-4 h2 {
    color: white;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.item-2 ul,
.item-4 ul {
    text-align: center;
    list-style-type: none;
}

.item-2 ul li .item-4 ul li {
    margin-bottom: 10px;
}

.item-3 {
    width: calc(40% - 20px);
    height: 300px;
    margin-top: auto;
}

.item-3 h3 {
    padding-left: 22px;
    padding-top: 40px;
    color: white;

}

.item-4 {
    width: calc(60% - 20px);
    height: 300px;
    margin-top: auto;
    margin-left: auto;
}

.circle-row {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: calc(100% - 50px);
    left: 0;
    right: 0;
}

.circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.square {
    width: 120px;
    height: 120px;
    position: absolute;
    background-size: cover;
    background-position: center;
    border: 2px solid white;
}

.square-1 {
    top: 50px;
    left: 30px;
    border-radius: 10px;
}

.square-2 {
    top: 325px;
    left: 30px;
    border-radius: 10px;
}

.text-1,
.text-2 {
    position: absolute;
    color: white;
    margin-left: 150px;
}

.text-1 {
    top: 55px;
}

.text-2 {
    top: 330px;
}

.text-1 p,
.text-2 p {
    margin: 0;
}

.text-1 h2,
.text-2 h2 {
    margin: 5px 0;
    font-size: 30px;
}

.text-1 h3,
.text-2 h3 {
    margin: 0;
    font-size: 36px;
}

.text-4,
.text-5,
.text-6,
.text-7,
.text-3 {
    font-size: 20px;
    color: white;
}

.mp3-player {
    padding-left: 20px;
    padding-top: 25px;
}

.item-3 h2 {
    color: white;
}