@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background: url(./images/bg.jpg), #000;
    background-size: cover;
    color: #fff;
    font-family: "Quicksand", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Nav */
nav {
    width: 100%;
    height: 75px;
    background: #4570a3;
}

nav h1 {
    position: absolute;
    margin: 12.5px 30px;
    font-size: 40px;
    font-family: "Arvo", serif;
    font-weight: 550;
    font-style: italic;
    text-decoration: underline;
}

nav ul {
    float: right;
    margin-right: 35px;
    font-size: 25px;
}

nav ul li {
    display: inline-block;
    margin: 20px 35px;
}

nav ul li a:hover {
    color: #79d9ff;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
}

nav ul li a i {
    margin: 0 10px;
}

/* Home */
.home {
    margin: 30px;
    height: fit-content;
    padding: 20px;
    background-color: rgba(0, 14, 41, 0.612);
    border-radius: 10px;
}

.info-div {
    margin-bottom: 30px;
}

.home h1 {
    font-size: 40px;
    font-family: "Arvo", serif;
    font-weight: 500;
    margin-bottom: 8px;
    color: #79d9ff;
}

.home h2 {
    font-size: 32px;
    font-family: "Arvo", serif;
    font-weight: 500;
    margin-bottom: 8px;
    color: #79d9ff;
}

.home p{
    font-size: 18px;
    margin-left: 10px;
}

.home ul {
    padding-left: 30px;
    margin-top: 8px; 
}

.intro-text {
    margin-bottom: 30px;
    font-style: italic;
}

.info-div .outro-text {
    font-size: 20px;
    color: #79d9ff;
    /* text-decoration:wavy; */
    font-style: italic;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}


/* Footer */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding-top: 5px;
    padding-bottom: 10px;
    background-color: rgba(0, 14, 41, 0.612);
}


.footer-content p {
    max-width: 500px;
    color: #cacdd2;
}

.copyright {
    width: 100%;
    text-align: center;
}

.copyright p {
    word-spacing: 2px;
    text-transform: capitalize;
}

.copyright p a {
    color: #79d9ff;
    font-size: 16px;
    text-decoration: none;
}

.copyright p a:hover {
    color: #5ca3c0;
}