body {
	background-color: #ECEC1A;
}
ul {
	list-style-type: none;
	background-color: #7A9E9F;
	padding: 0px;
	margin: 0px;
	overflow: hidden
}

a {
	text-decoration: none;
	padding: 15px;
	display: block;
	text-align: center;
	color: white
}

a:hover{
	background-color: black;
}

li{
	float: left;
}

p {
	text-align: center;
	margin-left: 20px;
	margin-right: 20px;
}
 row {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  grid-template-areas:
    "image1 image1 image1 image1"
    "text text text text";
}
/* Styles for the About Me section */
.about {
    text-align: center;
}

.text h1 {
    text-align: center;
}

@media screen and (max-width: 600px) {
    .main {
        flex-direction: column;
    }

    .text {
        margin-left: 0;
        margin-top: 20px; 
        text-align: center;
    }
}
.logo {
    width: 270px; 
    height: auto; 
    margin-right: auto; 
    margin-bottom: 10px; 
}
.video-container {
    width: auto; 
    height: 200px; 
    overflow: hidden; 
    position: relative;
}

.cloud-video {
    width: 100%;
    height: auto; 
    position: absolute;
    top: 50%;
    transform: translateY(-50%); 
}
@media screen and (max-width: 600px) {
    ul {
        display: flex;
        flex-direction: column;
    }
    li {
        float: none;
    }
    a {
        text-align: center;
    }
}