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

html,
body {
    height: 100%;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

#main {
    height: 100%;
    width: 100%;
    background-color: black;
    color: white;
}

#nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 35px;
    /* position: absolute; */
    width: 100%;
    z-index: 1;
}

#nav .nav_links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 250px;
}

#nav a {
    font-family: Georgia, 'Times New Roman', Times, serif;

    text-decoration: none;
    /* color: black; */
        color: white;
    font-weight: 500;
    display: inline-block;
    font-size: 18px;
    transition: 0.3s;
}

#main>h1 {
    color: white;
    text-align: center;
    /* margin-top: 5px; */
    font-size: 360px;
    opacity: 0.8;
    font-weight: 400;
    text-shadow: 10px 10px 10px rgba(118, 118, 118, 0.385);
}


#images>img {
    position: absolute;
    height: 250px;
}

#sweater_img1 {
    bottom: 10%;
    right: 40%;
    transform: rotate(-15deg);
    border-radius: 15px;
    /* opacity: 0.9; */
    box-shadow: -5px 15px 20px rgba(92, 92, 92, 0.6);
}

#sweater_img2 {
    bottom: 22%;
    right: 27%;
    /* transform: rotate(-5deg); */
    border-radius: 15px;
    opacity: 0.9;
    box-shadow: 5px 15px 20px rgba(50, 50, 50, 0.6);
}

#sweater_img3 {
    bottom: 10%;
    right: 15%;
    transform: rotate(15deg);
    border-radius: 15px;
    /* opacity: 0.9; */
    box-shadow: 5px 10px 20px rgba(55, 55, 55, 0.6);
}

#btm_left {
    position: absolute;
    bottom: 10%;
    left: 1%;
    width: 40%;
    padding: 20px;
    color: white;
    opacity: 0.8;
    width: 320px;
    text-align: justify;
    opacity: 0.8;
}

#btm_left h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    margin-bottom: 5px;
    opacity: 0.9;

}

#btm_left>p {
    font-size: 15px;
    margin-bottom: 10px;
    opacity: 0.8;

}
#btm_left .description {
    margin-bottom: 20px;
}

#btm {
    position: absolute;
    padding: 0px 35px;
    bottom: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#btm p {
    font-size: 25px;
    font-weight: 500;
    opacity: 0.7;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

#btm a {
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 10px 15px;
    border: 2px solid white;
    border-radius: 20px;
    transition: 0.3s;
}

#btm a:hover {
    background-color: white;
    color: black;
}