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

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

body {
    font-family: 'Josefin Sans', sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 6rem 3rem;
}

.link-container {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    color: darkblue;

}

.login {
    color: #c4c4c4;
}

.link-container a {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
}

header {
    display: flex;
    align-items: center;
    margin-left: 3rem;
    overflow: hidden;

}

.info {
    width: 50%;
}

#subtitle {
    color: #c4c4c4;
    letter-spacing: 3px;
}

#subtitle span {
    background-color: darkblue;
    color: white;
    padding: 0.25rem 0.45rem;
    border-radius: 1rem;
    letter-spacing: 0;
    margin-right: 0.5rem;
}

h1 {
    font-size: 2rem;
    margin-top: 2rem;
}

#description {
    color: #c4c4c4;
    margin-top: 2rem;
    font-size: 1.25rem;
}

#button-container {
    display: flex;
    margin-top: 2.5rem;
    gap: 2rem;
    align-items: center;
}

button {
    background-color: orangered;
    border: none;
    border-radius: 0.2rem;
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 800;
    font-size: 0.8rem;
}

#button-container p {
    color: #c4c4c4;
}

#img-container {
    width: 50%;
    flex: 1;
}

#bg {
   width: 50%;
   height: 50%;
   border-bottom-left-radius: 3rem;
   background-color:  hsl(230, 11%, 40%); 
   position: absolute;
   top: 0;
   right: 0;
   z-index: -1;
}