.main {
    display: flex;
    width: 100%;
    height: 500px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.one,
.two {
    width: 50%;
    box-sizing: border-box;
}

.one {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: #f0f0f0;
}

body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subtext {
    margin-top: 10px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 18px;
}

.two {
    background-image: url('GettyImages-1456254042-scaled.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 500px;
}

.logo {
    width: 150px;
    height: auto;
    padding-right: 20px;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
    background-color: rgb(226, 226, 226);
    border-radius: 50px;
    padding: 5px;
}

.link {
    text-decoration: none;
    color: black;
    border-radius: 50px;
    padding: 5px;
    margin-left: 5px;
    margin-right: 5px;

}

.link:hover {
    box-shadow: 0px 0px 3px 0px rgb(70, 70, 70);
}

#link.active {
    background-color: white;
}

.btn {
    display: flex;
    justify-content: flex-start;
}

.abutton {
    padding: 20px;
    border: solid #0000 2px;
    border-radius: 50px;
}

.bbutton {
    border: none;
    background-color: transparent;
}


.section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section p{
    font-size: 24px;
}
