@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    font-family: Roboto, Verdana, Geneva, Tahoma, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #008EBE 0%, #FFFFFF 100%);

}

header {
    display: flex;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem 4rem;
    background: linear-gradient(to bottom, black 0%, #2c2c2c 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.header-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header-button {
    background-color: #008EBE;
    color: black;
    border: none;
    padding: 10px 10px;
    width: 150px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.header-button:hover {
    background-color: #00bfff;
}

.logo {
    color: white;
    background-color: black;
    display: flex;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
    border: rgba(255, 255, 255, 0.547) 2px solid;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.section {
    padding: 7rem 5rem;

}
.hero {
    margin: 5rem 0;
    text-align: center;
    font-weight: 300;
}

p {
    margin-bottom: 3rem;
}
h2 {
    text-align: center;
    font-weight: 300;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem 0;
}

.image-container {
    width: 400px;
    height: 496px;
}
.image-container img {
    width: 100%;
    height: 100%;
    border: rgba(0, 0, 0, 0.388) 2px solid;
    object-fit: cover;
}

.about-text {
    margin: 0 2rem;
    text-align: right;
    width: 500px;
    font-size: 24px;
    font-weight: 200;
}
q {
    font-style: italic;
    align-self: end;
    font-weight: 400;
}
.interests {
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.interests p {
    text-align: center;
    font-size: 24px;
    font-weight: 200;
    width: 550px;
    padding: 3rem 0
}

.monitor {
    position: relative;
    width: 800px;
    height: 400px;
    background: #222;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    border: 5px solid #333;
}

.screen {
    width: 100%;
    height: 100%;
    background: black;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #000;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stand {
    position: absolute;
    bottom: -50px;
    left: 50%;
    width: 80px;
    height: 50px;
    background: #333;
    transform: translateX(-50%);
    border-radius: 5px 5px 20px 20px;
}

.contact p {
    margin: 5rem 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

