@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

nav {
    background-image: url("https://getwallpapers.com/wallpaper/full/2/e/f/1044994-backgrounds-scenery-1920x1080-download.jpg");
    background-repeat: space;
    background-position: cover;
    padding: 0px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
}

nav .title {
    margin-top: 20px;
}

nav .middle {
    width: clamp(150px, 90%, 800px);
}

nav .middle span {
    text-align: left;
}

nav .bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px
}

nav .bottom a {
    padding: 10px 15px;
    background: rgba(255, 255, 255, .35);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(129, 129, 129, 0.15);
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
    transform: scale(1);
}

nav .bottom a:hover {
    transition: 0.2s;
    transform: scale(1.1);
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
    flex-wrap: wrap;
    gap: 10px
}

.container .text {
    height: 100%;
    width: 50%;
}

.container h1 {
    margin: 0;
}

.container .content {
    padding-left: 15px;
}

.container .image {
    display: inline-block;
    padding: 0;
    border: none;
    box-sizing: border-box;
    margin: 0;
}

.container .image img {
    width: 500px;
    height: 500px;
    box-sizing: border-box;
    border-radius: 10px;
}

.center-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.center-wrap hr {
    border: 0;
    border-top: 1px solid rgb(92, 92, 92);
    width: 95%;
}

footer {
    background-color: #e0e0e0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 64px;
    margin-top: 8px;
}
/*
.container1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.container1 .center {
    height: 100%;
    width: 80%;
    padding: 10px;
    flex: 0 0 auto;
}

.container1 .center h4 {
    margin: 0;
    margin-top: 30px;
    font-size: 32px;
}

.container1 .center .content {
    margin-top: 30px;
    width: 80%;
}

.container1 .image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 0 1 auto;
}


.container1 .image img {
    width: 100%;
    height: 100%;
}

.center-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.center-wrap hr {
    border: 0;
    border-top: 1px solid rgb(92, 92, 92);
    width: 95%;
}
*/