* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #404040;
    color: #ffffff;
    background-image: url('https://img.freepik.com/premium-photo/integration-green-data-centers-sustainable-computing-practices_641503-121398.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

image {
    width: 100px;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    background-image: url('https://www.verdict.co.uk/wp-content/uploads/2022/07/Shutterstock_1031206543.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 120px;
    color: white;
}

header img {
    object-fit: contain;
}

#menu-btn {
    background: #333333;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    color: aliceblue;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    border: none;
}

#sidebar {
    position: fixed;
    top: 0;
    z-index: 1000;
    left: -220px;
    width: 200px;
    height: 100%;
    background: #1e1e1e;
    transition: 0.3s;
}

a {
    color: white;
}

a:visited {
    color: white;
}

a:active {
    color: white;
}

a:hover {
    color: white;
}

a:link {
    color: white;
}


#sidebar a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

#sidebar a:hover {
    background: #333;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #404040;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 15px;
    font-size: 28px;
    text-align: center;
}


.section-title {
    min-width: fit-content;
    font-weight: bold;
    padding: 20px;
    font-size: large;
    background: #3c5544;
}

.section-title2 {
    min-width: fit-content;
    font-weight: bold;
    padding: 20px;
    font-size: large;
    text-align: right;
    background: #3c5544;
}
.section-title3 {
    min-width: fit-content;
    font-weight: bold;
    padding: 20px;
    font-size: large;
    text-align: center;
    background: #3c5544;
}


p {
    margin: 10px 0;
    line-height: 35px;
}

h3 {
    text-align: center;
}

footer {
    text-align: center;
    padding: 20px;
    color: #ffffff;

}

#button {
    background: #333333;
    padding: 8px 16px;
    color: aliceblue;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    border: none;
}

h1 {
    text-align: center
}


.question {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-button {
    display: flex;
    justify-content: center;
}

.mascot {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.logone {
    position: relative;
    width: 360px;
    max-width: 100%;
}

.logone-hover {
    position: absolute;
    top: 0;
    right: 10px;
    left: 0;
    bottom: 0;
    object-fit: contain;
    opacity: 0;
    transition: opacity .2s;
}

.logone-hover:hover {
    opacity: 1;
}

.text-one {
    text-align: center;
}

.text-two {
    text-align: right;
}

.text-three {
    text-align: left;
}

.text-video{
    display: flex;
}
.text-video p{
   width: 90%;
}

