@import url('https://fonts.googleapis.com/css2?family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Teachers", sans-serif;
    background: radial-gradient(circle at -2% -25%, rgb(250, 66, 255) 0%, rgba(255, 213, 136, 0.97) 100.7%);
}

header,
main,
footer,
aside {
    padding: 2vw;
}

.logo {
    height: 20px;
    width: 20px;
    background-color: black;
    rotate: 45deg;
    transition: 0.5s ease;
}

.logo:hover{
    rotate: 90deg;
    border-radius: 6px;
}


header {
    justify-content: space-between;
}

header nav ul {
    list-style-type: none;
    text-align: right;
    color: rgb(0, 0, 0);
}

ul li:nth-child(1) {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 25px;
    color: black;
}

main h1{
    font-size: 70px;
    font-weight: 400;
    color: black;
    letter-spacing: 10px;
    line-height: 1;
}

.container {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 25% 55% 20%;
}

footer{
    font-size: 14px;
    width: 80%;
    align-self: center;
}

aside {
    grid-column: 2;
    grid-row: 1 / -1;
    padding-right: 3vw;
}

@media screen and (max-width:680px) {
    .container {
        grid-template-columns: 100%;
        grid-template-rows: 25% 30% 15% 30%;
    }

    main h1{
        font-size: 50px;
        font-weight: 500;
    }

    footer p {
        width: 100%;
    }

    aside {
        grid-row: 4;
        grid-column: 1;
        padding: 0;
        background-position: center;
    }
}

aside video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}